
.open-sans-normal {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

* {
  box-sizing: border-box;
}
/* shared style */
.bg-secondary {

    background-color: #FFF8F3;
}

.text-primary {

    color: #FD6E0A;
}

.btn-primary {

       background-color: #FD6E0A;
       font-weight: bold;
       font-size: 20px; 
       border: none;
       color: white;
       padding: 18px 35px;
       border-radius: 5px;
}

.section-title {

    font-size: 35px;
    font-weight: bold;
    color: #181818;
    
}
.section-description {

    font-size: 18px;
    color: #757575;

}

.text-center{

    text-align: center;
}

.dark-3 {

    color: #757575;
}
/* header */

.header {
      
    background-image: url(../assets/developer.png), url(../assets/header_bg.png);
    background-repeat: no-repeat;
    background-position: top left, bottom right;
}

.dark-2 {

    color: #474747;
}

/* nav styles */

nav{

    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 100px;
}
.title{

    font-weight: 800px;
    font-size: 48px;
}

nav ul {

    display: flex;
    align-items: center;
}
nav ul li {

    list-style: none;
    margin-right: 50px;
}

nav li a {

    text-decoration: none;
    font-size: 20px;
}


/* banner styles */

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center; /* এটা center করবে vertical ভাবে */
    margin: 0 35px; /* 230px বাদ দিয়ে দিয়েছি */
    padding: 0 110px;
    /* gap: 400px; */
}
.banner-content {

    max-width: 580px;
}
.banner-greetings {

    font-size: 45px;
    font-weight: 600;
}

.banner-title {

    font-weight: bold;
    font-size: 85px;

}

.banner-profile-picture {
    
    width: 580px;
}
/* main styles */

main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

main section {
    margin-top: 130px;
    margin-bottom: 130px;

}

/* about styles*/

.about {

    border-radius: 10px;
    padding: 130px 150px;
    text-align: center;

    
}

.item-description {

    font-weight: 600;
}
.about-items {

    display: flex;
    justify-content: space-around;

}


/* skills section start */

.skills-container {

    display: flex;
    gap: 24px;
}

.skill {

    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
}


/* resume section styles  */

.resume-container {
    display: flex;
    gap: 24px;
}

.experience-sub-title {

    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.experience-description, .experience-sub-title{

    color: #757575;
}
.resume hr {

    margin: 30px 0;
}

.resume-cv {

    margin-top: 50px;
}


/* footer styles */

footer {

    padding: 130px 230px;
    display: flex;
    gap: 100px;
    
}
.footer-column{

    width: 50%;
}

footer input[type=name], footer input[type=email] {

    height: 64px;
    border-radius: 5px;
    background-color: white;
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 24px;
    border: none;
}
footer textarea{

    height: 150px;
    border-radius: 5px;
    background-color: white;
    display: block;
    width: 100%;
    margin-bottom: 24px;
}


